home *** CD-ROM | disk | FTP | other *** search
- /*
- * Copyright 1986, 1987 Pat Joseph Monardo. All rights reserved.
- * Copying of this file is granted according to the provisions
- * specified in the file COPYING which must accompany this file.
- */
-
-
- /*
- * align.h
- */
-
- int push_alignment();
- int pop_alignment();
-
- #define ALIGN_STACK_NODE_SIZE 5
-
- #define u_part(A) mem[A + HEIGHT_OFFSET].i
- #define v_part(A) mem[A + DEPTH_OFFSET].i
- #define extra_info(A) info(A + LIST_OFFSET)
-
- #define SPAN_CODE 128
- #define CR_CODE 129
- #define CR_CR_CODE CR_CODE + 1
-
- #define SPAN_NODE_SIZE 2
-
- #define preamble link(align_head)
-
- global ptr cur_align;
- global ptr cur_span;
- global ptr cur_loop;
- global ptr cur_head;
- global ptr cur_tail;
- global ptr align_ptr;
-
- int init_align();
- int get_preamble_token();
- int align_peek();
- int init_row();
- int init_span();
- int init_col();
- bool fin_col();
- int fin_row();
- int fin_align();
-